@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;0,6..12,1000;1,6..12,200;1,6..12,300;1,6..12,400;1,6..12,500;1,6..12,600;1,6..12,700;1,6..12,800;1,6..12,900;1,6..12,1000&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    outline: none;
    list-style: none;
}

.aboutus-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 70px;
}

.about-section {
    display: flex;
    width: 100%;
    height: 70%;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
}


.about-content {
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.sub-title {
    font-size: 1.5rem;
    margin: 20px 0 5px 0;
    font-family: 'Pacifico', cursive;
    font-weight: 600;
    color: #F83A6F;
}

.logo-box img {
    width: 500px;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
}

.set-us-apart i {
    line-height: 25px;
}

.set-apart {
    font-weight: bold;
    font-family: cursive;
}

@media (max-width:1090px) {
    .about-section {
        flex-direction: column;
    }

    .about-content {
        width: 90vw;
    }

    .logo-box img {
        border-radius: 0;
        width: 100vw;
        height: 400px;
        object-position: right;
    }
}

@media (min-width:300px) and (max-width:400px) {
    .logo-box img {
        height: 200px;
    }

    .aboutus-container {
        margin-top: 10px;
    }
}